home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 23 / CD Expert nº 23 Oddworld Abe's Oddysee.iso / DOS / install.bat < prev    next >
DOS Batch File  |  1997-10-02  |  1KB  |  72 lines

  1. @echo off
  2.  
  3. if "%1"!="" goto INPUT
  4.  
  5. mkdir C:\ABE
  6.  
  7. copy *.exe C:\ABE
  8.  
  9. copy *.dig C:\ABE
  10. copy *.mdi C:\ABE
  11. copy *.ad  C:\ABE
  12. copy *.lst C:\ABE
  13. copy *.bat C:\ABE
  14. copy *.txt C:\ABE
  15.  
  16. attrib -r C:\ABE\*.*
  17.  
  18. echo .
  19. echo Abe's Oddysee is now installed in C:\ABE
  20. echo .
  21. echo Type ABE and hit [enter] to play the DOS version.
  22. echo    You should configure your sound card first by
  23. echo    running SETSOUND.
  24.  
  25. C:
  26. cd \ABE
  27.  
  28. GOTO BYEBYE:
  29.  
  30. :INPUT
  31.  
  32. if not exist abedos.exe goto NOCDROM
  33.  
  34. mkdir %1
  35.  
  36. copy *.exe %1
  37.  
  38. if not exist %1\abewin.exe goto NODESTDIR
  39.  
  40. copy *.dig %1
  41. copy *.mdi %1
  42. copy *.ad  %1
  43. copy *.lst %1
  44. copy *.bat %1
  45. copy *.txt %1
  46.  
  47. attrib -r %1\*.*
  48.  
  49. echo .
  50. echo Abe's Oddysee is now installed in %1
  51. echo .
  52. echo Type ABE and hit [enter] to play the DOS version.
  53. echo    You should configure your sound card first by
  54. echo    running SETSOUND.
  55.  
  56. cd %1
  57. goto BYEBYE
  58.  
  59. :NOCDROM
  60.  
  61. echo The cd-rom directory containing ABEDOS.EXE should be the current directory.
  62.  
  63. goto BYEBYE
  64.  
  65. :NODESTDIR
  66.  
  67. echo The destination directory specified could not be made
  68.  
  69. goto BYEBYE
  70.  
  71. :BYEBYE
  72.